home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Communications / pcomm / Source / extrnl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-12  |  623 b   |  21 lines

  1. /*
  2.  * The external file transfer program database.  The list is limited to
  3.  * 3 uploads and 3 downloads because the xfer_menu() routine uses single
  4.  * character input (and these selections become 7, 8, and 9).
  5.  */
  6.  
  7. struct EXTRNL {
  8.     char    *name[2][3];        /* program name (for display only) */
  9.     char    *command[2][3];        /* the command line */
  10.     char    prompt[2][3];        /* need to prompt for names? */
  11.  
  12.     int    up_entries;        /* number of up entries in the file */
  13.     int    dn_entries;        /* number of down entries in the file */
  14.  
  15.     char    *e_path;        /* path to the pcomm.extrnl file */
  16. };
  17.  
  18. #ifndef MAIN
  19. extern struct EXTRNL *extrnl;
  20. #endif /* MAIN */
  21.